/* this page is showing know more about me styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background: linear-gradient(135deg, #4a90e2, #0072ff);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header .btn {
  background: white;
  color: #0072ff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 1rem;
  display: inline-block;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 2rem 0;
}

section {
  margin: 2rem 0;
  background: rgb(250, 246, 240);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

section h2 {
  margin-bottom: 1rem;
  color: #0072ff;
}

.profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

ul {
  padding-left: 1.2rem;
}

.btn {
  background: #0072ff;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056cc;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  text-decoration: none;
  background: #0072ff;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #0056cc;
}

/* ---------- Footer ---------- */
  .footer {
    margin-top: 50px;
    padding: 30px 20px 15px;
    background: #f2f2f2;
    border-top: 1px solid #ddd;
  }
  .footer-container { display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px; }
  .footer-left h2 { margin:0; font-size:20px; color:#004080; }
  .footer-left p { margin:6px 0 0; font-size:14px; color:#444; }
  .footer-links, .footer-socials { display:flex; gap:16px; flex-wrap:wrap; }
  .footer-links a, .footer-socials a { font-size:14px; color:#004080; transition: color 0.3s ease; }
  .footer-links a:hover, .footer-socials a:hover { color:#0073e6; }
  .footer-bottom { margin-top:20px; text-align:center; font-size:13px; color:#555; border-top:1px solid #ccc; padding-top:10px; }

/* Responsive */
@media(max-width: 600px) {
  .social-links {
    flex-direction: column;
  }
}
